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

