// Chargement Pays Liste déroulante
function unLoadPays(lst){
	if(lst.selectedIndex==0) document.location.href='?';
	
	if(lst.selectedIndex==1) selectPays(5);
	if(lst.selectedIndex==2) selectPays(3);
	if(lst.selectedIndex==3) selectPays(2);
	if(lst.selectedIndex==4) selectPays(4);
	if(lst.selectedIndex==5) selectPays(1);
}