
function service()
{
var city = document.searchbox.City.options[document.searchbox.City.selectedIndex].value;
var service = document.searchbox.Service.options[document.searchbox.Service.selectedIndex].value;
if(city=="")
{
alert("You have not selected the city");
x=1;
return false;
}else if(service=="")
{
alert("You have not selected the service");
return false;
x=1;
}else{
pth = "/moving-companies/"+city+"-"+service+".html";
window.location.href=pth;
}
return false;
}

var href = location.href;


