var optProvince=new Array();

function aggiornaProvince(){
	var sel, x, i;
	sel=document.getElementById('provincia');
	x=document.getElementById('regione').selectedIndex;
	
/*	var tmp="options.length=" + sel.options.length;
	for (i=0; i<sel.options.length; i++)
		tmp+="\n" + i + "-" + sel.options[i].text + "=" + sel.options[i].value + ";";
	alert(tmp); */
	for (i=0; i<optProvince[x].length; i++)
		sel.options[i]=new Option(optProvince[x][i].text, optProvince[x][i].value);
	for (i=sel.options.length-1; i>=optProvince[x].length; i--)
		sel.options[i]=null;

	sel.selectedIndex=0;
}
