function clearfield(field){
	if(field.value=='In che zona o indirizzo?'){
		field.value='';
		field.style.color='#000';
		return false;
		}
	else if(field.value==''){
		field.value='In che zona o indirizzo?';
		field.style.color='#999';
		return false;
		};
	}
function clearfield_e(field){
	if(field.value=='Inserisci il tuo indirizzo e-mail'){
		field.value='';
		field.style.color='#000';
		return false;
		}
	else if(field.value==''){
		field.value='Inserisci il tuo indirizzo e-mail';
		field.style.color='#999';
		return false;
		};
	}	

function clearselect(field){
		if(field[field.selectedIndex].value==''){field.style.color='#999';}
		else {field.style.color='#000';};
	}
	
function focusselect(field){
	field.style.color='#000';
	}
	
	
	
function clickclear(thisfield, defaulttext) {
if (thisfield.value == defaulttext) {thisfield.value ="";thisfield.style.color='#000';}else
if (thisfield.value == "") {thisfield.value = defaulttext;thisfield.style.color='#999';}else
{thisfield.style.color='#000';}
}


