/**
 * @author Raphael Leray
 */

 function getEnsByDep(dep_id,form,champ){
	new Ajax.Request('/Ajax/getEnsByDep/?dep_id='+dep_id+'&formname='+form+'&champ='+champ,{
		method:'get',
		onSuccess:function(transport){
			//On execute le javascript reçu
			eval(transport.responseText);
		}
	});
}
