function verifForm(theform){
	myAlert.corectY=-150;
		if(theform.search_produits[theform.search_produits.selectedIndex].value==0){
		theform.search_produits.focus();
		messageAlert('<br />You have to to the minimun select a research type and a city','search_produits');
		return false;
	}
    	if(theform.ville_produits[theform.ville_produits.selectedIndex].value==0){
		theform.ville_produits.focus();
		messageAlert('<br />You have to to the minimun select a research type and a city','ville_produits');
		return false;
	}
    if(!theform.standing_produits1.checked && !theform.standing_produits2.checked && !theform.standing_produits3.checked && !theform.standing_produits4.checked){
    	theform.standing_produits5.checked = true;
	}
    if(!theform.type_produits1.checked && !theform.type_produits2.checked && !theform.type_produits3.checked && !theform.type_produits4.checked && !theform.type_produits5.checked && !theform.type_produits6.checked){
    	theform.type_produits7.checked = true;
	}
	return true;
}