function EffacerChpRecherche()
{	
	//alert('on efface les champs');
	//alert(document.FormRecherche.typebien.options[0].value);
	document.FormRecherche.typebien.options[0].selected = true;
	document.FormRecherche.departement.options[0].selected = true;
	document.FormRecherche.budgetmin.value='';
	document.FormRecherche.budgetmax.value='';
	document.FormRecherche.surfacemin.value='';
	document.FormRecherche[0].reset();
	return false;
}

