function info_hotesse(id){
	

	var url='ajax/info_hotesse.php?hotesse_id='+id;
	
	new Ajax.Request(url,{
		method: 'get',
		onSuccess: function(retour){
			document.getElementById('info_hotesse').innerHTML=retour.responseText;
		}
	});
}