function checkLocalisation()
{
	if(document.getElementById('localisation').value == '')
	{

		document.getElementById('champObligaoire').style.color = "red";
		return false;
	}
	else {
		return true;
  }
}			
