// JavaScript $(function(){	$("select[name=regioni]").change(function(){		var thi = $(this).parent();			$.post("http://www.associazionevisuristi.com/js/select/select.php",{regioni: $(this).val()}, function(j){ 																		 			var options = j;						$(thi).children("select[name=province]").html(options);			$(thi).children('select[name=province] option:first').attr('selected', 'selected');					})	})			})	// JavaScript $(function(){	$("select[name=regioni2]").change(function(){		var thi2 = $(this).parent();			$.post("http://www.associazionevisuristi.com/js/select/select.php",{regioni2: $(this).val()}, function(j){ 																		 			var options = j;						$(thi2).children("select[name=province2]").html(options);			$(thi2).children('select[name=province2] option:first').attr('selected', 'selected');					})	})			})	// JavaScript $(function(){	$("select[name=regione_sede_legale]").change(function(){		var thi3 = $(this).parent();			$.post("http://www.associazionevisuristi.com/js/select/select.php",{regione_sede_legale: $(this).val()}, function(j){ 																		 			var options = j;						$(thi3).children("select[name=provincia_sede_legale]").html(options);			$(thi3).children('select[name=provincia_sede_legale] option:first').attr('selected', 'selected');					})	})			})	// JavaScript $(function(){	$("select[name=regione_sede_operativa]").change(function(){		var thi4 = $(this).parent();			$.post("http://www.associazionevisuristi.com/js/select/select.php",{regione_sede_operativa: $(this).val()}, function(j){ 																		 			var options = j;						$(thi4).children("select[name=provincia_sede_operativa]").html(options);			$(thi4).children('select[name=provincia_sede_operativa] option:first').attr('selected', 'selected');					})	})			})	// JavaScript $(function(){	$("select[name=regione_sede_operativa_2]").change(function(){		var thi5 = $(this).parent();			$.post("http://www.associazionevisuristi.com/js/select/select.php",{regione_sede_operativa_2: $(this).val()}, function(j){ 																		 			var options = j;						$(thi5).children("select[name=provincia_sede_operativa_2]").html(options);			$(thi5).children('select[name=provincia_sede_operativa_2] option:first').attr('selected', 'selected');					})	})			})	// JavaScript $(function(){	$("select[name=provincia_sede_legale]").change(function(){		var thi6 = $(this).parent();			$.post("http://www.associazionevisuristi.com/js/select/select.php",{provincia_sede_legale: $(this).val()}, function(j){ 																		 			var options = j;						$(thi6).children("select[name=comune_sede_legale]").html(options);			$(thi6).children('select[name=comune_sede_legale] option:first').attr('selected', 'selected');					})	})			})	// JavaScript $(function(){	$("select[name=provincia_sede_operativa]").change(function(){		var thi7 = $(this).parent();			$.post("http://www.associazionevisuristi.com/js/select/select.php",{provincia_sede_operativa: $(this).val()}, function(j){ 																		 			var options = j;						$(thi7).children("select[name=comune_sede_operativa]").html(options);			$(thi7).children('select[name=comune_sede_operativa] option:first').attr('selected', 'selected');					})	})			})	// JavaScript $(function(){	$("select[name=provincia_sede_operativa_2]").change(function(){		var thi8 = $(this).parent();			$.post("http://www.associazionevisuristi.com/js/select/select.php",{provincia_sede_operativa_2: $(this).val()}, function(j){ 																		 			var options = j;						$(thi8).children("select[name=comune_sede_operativa_2]").html(options);			$(thi8).children('select[name=comune_sede_operativa_2] option:first').attr('selected', 'selected');					})	})			})	
