//CODE JAVASCRIPT à mettre dans un fichier à part script.js
function verification()
{
if (document.formtruc.km.value == "")
 { 
   alert("The estimate of the number of kms is obligatory!");  
   return false;   
 }
if (document.formtruc.conducteurs.value == "")
 { 
   alert("The number of drivers is obligatory!");  
   return false;   
 }
if (document.formtruc.age_conducteur.value == "")
 { 
   alert("Old of the principal driver is obligatory!");  
   return false;   
 }
}
