// JavaScript 
$(function(){
	$("select[@name=regioni]").change(function(){
		var thi = $(this).parent();
	
		$.post("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("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');
		})
	})	
})


