function selezionaSelect(id) {
	var selezionato = document.getElementById(id).options.selectedIndex;
	if (document.getElementById(id).options[selezionato].value=="") {
		document.getElementById(id).options.selectedIndex = selezionato + 1;
	}
}


function controllaObbligatori(id){
	
	errori = 0;
	target = document.getElementById(id).childNodes;
	for (var i = 0; i < target.length ; i++){
		target2 = target[i].childNodes;
		for (var j = 0; j < target2.length ; j++){
			if (target2[j].className && !target2[j].value){
				alert('compila i campi obbligatori!');
				errori++;
				return false;
			}
		}
	}
	
	if (!errori){
		alert('form inviato!');
	}
}

