var FindUs = {
	Load : function()
	{
		var DropDownFindUs = document.getElementById("find-us-select");
		var ButtonFindUs = document.getElementById("find-us-submit");

		if(DropDownFindUs != null && ButtonFindUs != null)
		{
			ButtonFindUs.onclick = function()
			{
				if(DropDownFindUs[DropDownFindUs.selectedIndex].value == '#')
				{
					DropDownFindUs.focus();
				}
				else
				{
					window.location = DropDownFindUs[DropDownFindUs.selectedIndex].value;
				}

			}
		}
	}
}

window.addToOnload(FindUs.Load);

