function ValidateDate(e)
{
	var peoples = document.getElementById("no_of_people").value;
	var way = document.getElementById("way").value;
	var type = document.getElementById("type").value;
	
	if(peoples == 0){
		alert("select no of people");
		return false;
	}else if(way == 10000){
		alert("please select the way");
		return false;
	}else if(type == 10000){
		alert("Please select the type");
		return false;
	}
	
	
}