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;Apache Junction",
						"&nbsp;Bisbee",
						"&nbsp;Camp Verde",
						"&nbsp;Casa Grande",
						"&nbsp;Chandler",
						"&nbsp;Chinle",
						"&nbsp;Clifton",
						"&nbsp;Douglas",
						"&nbsp;Flagstaff",
						"&nbsp;Florence",
						"&nbsp;Fortuna Foothills",
						"&nbsp;Gilbert",
						"&nbsp;Globe",
						"&nbsp;Grand Canyon",
						"&nbsp;Green Valley",
						"&nbsp;Holbrook",
						"&nbsp;Jerome",
						"&nbsp;Kingman",
						"&nbsp;Lake Havasu City",
						"&nbsp;Laughlin",
						"&nbsp;Mesa",
						"&nbsp;Mohave Valley",
						"&nbsp;Nogales",
						"&nbsp;Oro Valley",
						"&nbsp;Page",
						"&nbsp;Parker",
						"&nbsp;Payson",
						"&nbsp;Peoria",
						"&nbsp;Phoenix",
						"&nbsp;Prescott",
						"&nbsp;Prescott Valley",
						"&nbsp;Safford",
						"&nbsp;San Luis",
						"&nbsp;Scottsdale",
						"&nbsp;Sedona",
						"&nbsp;Show Low",
						"&nbsp;Sierra Vista",
						"&nbsp;St. Johns",
						"&nbsp;Surprise",
						"&nbsp;Tempe",
						"&nbsp;Tombstone",
						"&nbsp;Tuba City",
						"&nbsp;Tucson",
						"&nbsp;Wickenburg",
						"&nbsp;Williams",
						"&nbsp;Yuma");
var url = new MakeArray("",
					"http://arizona.citycreate.com/apache-junction",
					"http://arizona.citycreate.com/bisbee",
					"http://arizona.citycreate.com/camp-verde", 
					"http://arizona.citycreate.com/casa-grande",
					"http://arizona.citycreate.com/chandler",
					"http://arizona.citycreate.com/chinle",
					"http://arizona.citycreate.com/clifton",
					"http://arizona.citycreate.com/douglas",
					"http://arizona.citycreate.com/flagstaff",
					"http://arizona.citycreate.com/florence",
					"http://arizona.citycreate.com/fortuna-foothills",
					"http://arizona.citycreate.com/gilbert",
					"http://arizona.citycreate.com/globe",
					"http://arizona.citycreate.com/grand-canyon",
					"http://arizona.citycreate.com/green-valley",
					"http://arizona.citycreate.com/holbrook",
					"http://arizona.citycreate.com/jerome",
					"http://arizona.citycreate.com/kingman",
					"http://arizona.citycreate.com/lake-havasu-city",
					"http://arizona.citycreate.com/laughlin",
					"http://arizona.citycreate.com/mesa",
					"http://arizona.citycreate.com/mohave-valley",
					"http://arizona.citycreate.com/nogales",
					"http://arizona.citycreate.com/oro-valley",
					"http://arizona.citycreate.com/page",
					"http://arizona.citycreate.com/parker",
					"http://arizona.citycreate.com/payson",
					"http://arizona.citycreate.com/peoria",
					"http://arizona.citycreate.com/phoenix",
					"http://arizona.citycreate.com/prescott",
					"http://arizona.citycreate.com/prescott-valley",
					"http://arizona.citycreate.com/safford",
					"http://arizona.citycreate.com/san-luis",
					"http://arizona.citycreate.com/scottsdale",
					"http://arizona.citycreate.com/sedona",
					"http://arizona.citycreate.com/show-low",
					"http://arizona.citycreate.com/sierra-vista",
					"http://arizona.citycreate.com/st-johns",
					"http://arizona.citycreate.com/surprise",
					"http://arizona.citycreate.com/tempe",
					"http://arizona.citycreate.com/tombstone",
					"http://arizona.citycreate.com/tuba-city",
					"http://arizona.citycreate.com/tucson",
					"http://arizona.citycreate.com/wickenburg",
					"http://arizona.citycreate.com/williams",
					"http://arizona.citycreate.com/yuma");
function jumpPage(form)
 {
        i = form.SelectMenu.selectedIndex;
        if (i == 0) return;
        window.location.href = url[i+1];
}