function MakeArray()
        {
        this.length = MakeArray.arguments.length
        for (var i = 0; i < this.length; i++)
        this[i+1] = MakeArray.arguments[i]
        }var siteopt = new MakeArray("&nbsp;Choose a City",
						"&nbsp;Aberdeen",
						"&nbsp;Belle Fourche",
						"&nbsp;Brandon",
						"&nbsp;Brookings",
						"&nbsp;Canton",
						"&nbsp;Chamberlain",
						"&nbsp;Custer",
						"&nbsp;Deadwood",
						"&nbsp;Fort Pierre",
						"&nbsp;Hot Springs",
						"&nbsp;Huron",
						"&nbsp;Keystone",
						"&nbsp;Madison",
						"&nbsp;Milbank",
						"&nbsp;Mitchell",
						"&nbsp;Oacoma",
						"&nbsp;Pierre",
						"&nbsp;Rapid City",
						"&nbsp;Sioux City",
						"&nbsp;Sioux Falls",
						"&nbsp;Sisseton",
						"&nbsp;Sturgis",
						"&nbsp;Vermillion",
						"&nbsp;Wall",
						"&nbsp;Watertown",
						"&nbsp;Winner",
						"&nbsp;Yankton");
var url = new MakeArray("",
					"http://south-dakota.citycreate.com/aberdeen",
					"http://south-dakota.citycreate.com/belle-fourche",
					"http://south-dakota.citycreate.com/brandon",
					"http://south-dakota.citycreate.com/brookings",
					"http://south-dakota.citycreate.com/canton",
					"http://south-dakota.citycreate.com/chamberlain",
					"http://south-dakota.citycreate.com/custer",
					"http://south-dakota.citycreate.com/deadwood",
					"http://south-dakota.citycreate.com/fort-pierre",
					"http://south-dakota.citycreate.com/hot-springs",
					"http://south-dakota.citycreate.com/huron",
					"http://south-dakota.citycreate.com/keystone",
					"http://south-dakota.citycreate.com/madison",
					"http://south-dakota.citycreate.com/milbank",
					"http://south-dakota.citycreate.com/mitchell",
					"http://south-dakota.citycreate.com/oacoma",
					"http://south-dakota.citycreate.com/pierre",
					"http://south-dakota.citycreate.com/rapid-city",
					"http://south-dakota.citycreate.com/sioux-city",
					"http://south-dakota.citycreate.com/sioux-falls",
					"http://south-dakota.citycreate.com/sisseton",
					"http://south-dakota.citycreate.com/sturgis",
					"http://south-dakota.citycreate.com/vermillion",
					"http://south-dakota.citycreate.com/wall",
					"http://south-dakota.citycreate.com/watertown",
					"http://south-dakota.citycreate.com/winner",
					"http://south-dakota.citycreate.com/yankton");
function jumpPage(form)
 {
        i = form.SelectMenu.selectedIndex;
        if (i == 0) return;
        window.location.href = url[i+1];
}