function getOrganisation(){
	//requete pour menu
	var choixorganisation = document.getElementById("choixorganisation");
	var data = "choixorganisation="+choixorganisation.value;
	
	//fonction ajax qui va chercher la liste des organisation pour le departement
	var co;
	if (window.XMLHttpRequest) co = new XMLHttpRequest();
	else if (window.ActiveXObject) co = new ActiveXObject('Microsoft.XMLHTTP');
	else{
		alert('JavaScript : votre navigateur est trop vieux !');
		return;
	}	
	co.open('POST','ajax/choixorganisation.php?ajax',true);
	co.onreadystatechange = function(){
		
		if(co.readyState == 1){ }
		if (co.readyState == 4){
			if (document.getElementById){
					document.getElementById("icon_top_org").innerHTML = co.responseText;
			}
		}
	}
	co.setRequestHeader('Content-type','application/x-www-form-urlencoded');
	co.send(data);


	//requete pour miniature
	var co2;
	if (window.XMLHttpRequest) co2 = new XMLHttpRequest();
	else if (window.ActiveXObject) co2 = new ActiveXObject('Microsoft.XMLHTTP');
	else{
		alert('JavaScript : votre navigateur est trop vieux !');
		return;
	}	
	co2.open('POST','ajax/choixorganisation_miniat.php?ajax',true);
	co2.onreadystatechange = function(){
		
		if(co2.readyState == 1){ }
		if (co2.readyState == 4){
			if (document.getElementById){
					document.getElementById("miniat_org").innerHTML = co2.responseText;
			}
		}
	}
	co2.setRequestHeader('Content-type','application/x-www-form-urlencoded');
	co2.send(data);

}