function goToStock(){
if (document.getElementById('top_search').value == "used") {
location.href='http://www.mysite.co.uk/used-cars/';
}
else if (document.getElementById('top_search').value == "van") {
location.href='http://www.mysite.co.uk/used-vans-trucks/';
}
else if (document.getElementById('top_search').value == "bike") {
location.href='http://www.mysite.co.uk/used-bikes/';
}
else if (document.getElementById('top_search').value == "nearlynew") {
location.href='http://www.mysite.co.uk/nearly-new-cars/';
}
else if (document.getElementById('top_search').value == "motability") {
location.href='http://www.mysite.co.uk/motability/';
}
}
Bookmarks