// JavaScript Document

function ValideLease() 
{ 
  if (document.FLease.simuBudget.selectedIndex==0)
  {
  	alert('Budget obligatoire');	
	return false;
	}  
  if (document.FLease.simuApport.selectedIndex==0)
  {
  	alert('Apport obligatoire');	
	return false;
	}  
if (document.FLease.simuDuree.selectedIndex==0)
  {
  	alert('Durée obligatoire');
	
	return false;
	}
return true;
}

