function FunSendValue()
	{
		document.getElementById('HCountry').value=document.frm_Search.cbo_Country.selectedIndex;		
		document.getElementById('HCity').value=document.frm_Search.cbo_City.options[document.frm_Search.cbo_City.selectedIndex].value;
		document.getElementById('HPickUp').value=document.frm_Search.cbo_pickUp.selectedIndex;		
		document.getElementById('HAllAirport').value=document.frm_Search.cbo_All_Airport.options[document.frm_Search.cbo_All_Airport.selectedIndex].value;
		document.getElementById('HDropOff').value=document.frm_Search.cbo_DropOff.selectedIndex;
		document.getElementById('HChekinDate').value=document.frm_Search.txt_ChekinDate.value;		
		document.getElementById('HNoOfPassengers').value=document.frm_Search.cbo_NoOfPassengers.selectedIndex;
		document.getElementById('HLanguage').value=document.frm_Search.cbo_Language.selectedIndex;
		document.getElementById('HOptional').value=document.frm_Search.cbo_Optional.selectedIndex;
		//document.getElementById('HCheckbox').value=document.frm_Search.checkbox.value;
	}
	
	//ReceiveValue('<%=Request.Form["HCountry"]%>','<%=Request.Form["HCity"]%>','<%=Request.Form["HPickUp"]%>','<%=Request.Form["HAllAirport"]%>','<%=Request.Form["HDropOff"]%>','<%=Request.Form["HChekinDate"]%>','<%=Request.Form["HNoOfPassengers"]%>','<%=Request.Form["HLanguage"]%>','<%=Request.Form["HOptional"]%>','<%=Request.Form["HCheckbox"]%>')
	
	function ReceiveValue(HCountry,HCity,HPickUp,HAllAirport,HDropOff,HChekinDate,HNoOfPassengers,HLanguage,HOptional,HCheckbox)
	{
		document.frm_Search.cbo_Country.selectedIndex=HCountry;		
		document.frm_Search.cbo_pickUp.selectedIndex=HPickUp;		
		document.frm_Search.cbo_DropOff.selectedIndex=HDropOff;
		document.frm_Search.txt_ChekinDate.value=HChekinDate;		
		document.frm_Search.cbo_NoOfPassengers.selectedIndex=HNoOfPassengers;
		document.frm_Search.cbo_Language.selectedIndex=HLanguage;
		document.frm_Search.cbo_Optional.selectedIndex=HOptional;
		
		
	}
	
	
	
