function Definir_autre_tri(valeur){
<!-- Option 1 : Prix / Option 2 : Type de bien immobilier / Option 3 : Localite -->
	if (valeur=='Prix')
     {
        document.tri.Tri_secondaire.length=0;		 
		document.tri.Tri_secondaire.options[0] = new Option('','',true,false);
		var new_option1_text = document.tri.Tri_prioritaire.options[2].text;
		document.tri.Tri_secondaire.options[1] = new Option(new_option1_text,'Type_bien',false,false);
		var new_option2_text = document.tri.Tri_prioritaire.options[3].text;
		document.tri.Tri_secondaire.options[2] = new Option(new_option2_text,'Localite',false,false);
	 }
	if (valeur=='Type_bien')
     {
        document.tri.Tri_secondaire.length=0;		 
		document.tri.Tri_secondaire.options[0] = new Option('','',true,false);
		var new_option1_text = document.tri.Tri_prioritaire.options[1].text;
		document.tri.Tri_secondaire.options[1] = new Option(new_option1_text,'Prix',false,false);
		var new_option2_text = document.tri.Tri_prioritaire.options[3].text;
		document.tri.Tri_secondaire.options[2] = new Option(new_option2_text,'Localite',false,false);
	 }
	if (valeur=='Localite')
     {
        document.tri.Tri_secondaire.length=0;		 
		nouvel_element = new Option('','',true,false);
		document.tri.Tri_secondaire.options[0] = nouvel_element;
		var new_option1_text = document.tri.Tri_prioritaire.options[2].text;
		document.tri.Tri_secondaire.options[1] = new Option(new_option1_text,'Type_bien',false,false);
		var new_option2_text = document.tri.Tri_prioritaire.options[1].text;
		document.tri.Tri_secondaire.options[2] = new Option(new_option2_text,'Prix',false,false);
	 }
}
