function setvalue(){
	document.getElementById("searchorigin").value;
	alert(document.getElementById("searchorigin").value)
	document.frmEmpAdd.search.focus();
}
function removeOption(type){
	var lst = document.forms["search"][type];
	lst.options.length = 0;
}
function selOption(type,mkval){
	document.forms["search"][type].value=mkval;
}
function addOption(index,text,value,type) {
	var lst = document.forms["search"][type];
	lst.options[index] = new Option(text, value);
}
function fnCountry(){
	document.getElementById("ChkVal").src ='/business/cmbCountry.asp?CategoryCode='+document.search.searchcat.value;
}
function fnCity(){
	document.getElementById("ChkVal").src ='/business/cmbCity.asp?strCountry='+document.search.searchorigin.value+'&CategoryCode='+document.search.searchcat.value;
}

