// Validate contact us form

function submit_form()
{ 
	var list = document.frmdes.did;
	if(list.selectedIndex==-1)
	{
		alert("Please select the destination from list.");
		list.focus();
		return;
	}
	if(!list.length) return;
	//document.frmdes.did.value= list.options[list.selectedIndex].value;
	document.frmdes.submit();
}
