// JavaScript Document
   
function onChange(obj) {
	var Current = obj.area.selectedIndex;
	var n = 1;

    if (obj.area.value == "manchester")
	{
	document.Form1.action = "west-manchester.asp";
	}
	
	else if (obj.area.value == "ribble")
	{
	document.Form1.action = "ribble-valley.asp";
	}
	else
	{
	document.Form1.action = "search-office.asp";
	}    
}


function scrollToTop() {
scroll(0,0);
}
