// JavaScript 
$(function(){
	$("select[@name=regioni]").change(function(){
		var thi = $(this).parent();
	
		$.post("http://www.maccheroniec.it/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');			
		})
	})	
	
	$("select[@name=province]").change(function(){
		var thi = $(this).parent();
	
		$.post("http://www.maccheroniec.it/js/select/select.php",{province: $(this).val()}, function(j){ 
			var options = j;
			$(thi).children("select[@name=comuni]").html(options);
			$(thi).children('select[@name=comuni] option:first').attr('selected', 'selected');
		})
	})	
	
})

$(function(){
$("select[@name=provincia]").change(function(){
		var thi = $(this).parent();
	
		$.post("http://www.maccheroniec.it/js/select/select.php",{provincia: $(this).val()}, function(j){ 
			var options = j;
			$(thi).children("select[@name=citta]").html(options);
			$(thi).children('select[@name=citta] option:first').attr('selected', 'selected');
		})
	})	
})


$(function(){
	$("select[@name=regione]").change(function(){
		var thi = $(this).parent();
	
		$.post("http://www.maccheroniec.it/js/select/select.php",{regione: $(this).val()}, function(j){ 
			var options = j;
			
			$(thi).children("select[@name=provincia]").html(options);
			$(thi).children('select[@name=provincia] option:first').attr('selected', 'selected');			
		})
	})	
	
	
})
