function formHandler(){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

document.write('<form name="form">');
document.write('<select name="site" size=1>');
document.write('<option value="">Choose Destination');
document.write('<option value="HeadlandsInn.html">&#149;Headlands Inn in Mendocino Village');
document.write('<option value="BrannanCottage.html">&#149;Brannan Cottage Inn, Calistoga');
document.write('<option value="McGeeCreek.html">&#149;Creekside Tent and Breakfast');
document.write('<option value="OldWorldInn.html">&#149;Hidden Secrets of Napa Valley');
document.write('<option value="LeFaux.html">&#149;Oceanfront-LeFaux Mendocino');
document.write('<option value="MarbleMtn.html">&#149;Marble Mountain Guest Ranch');
document.write('<option value="PointArena.html">&#149;Point Arena Lighthouse Cottages');
document.write('<option value="Safari.html">&#149;A Real Safari B&amp;B');
document.write('<option value="CrystalCove.html">&#149;Stay on an old movie set');
document.write('<option value="BeachInn.html">&#149;OceanView-Beach House Inn');
document.write('<option value="Houseboat.html">&#149;Rent a Houseboat');
document.write('<option value="Bicycles.html">&#149;Overnight Bicycle Tours');
document.write('<option value="DudeRanch.html">&#149;Coffee Creek Dude Ranch');
document.write('<option value="RailroadPark.html">&#149;Sleep in a caboose');
document.write('<option value="Coloma.html">&#149;Discover the Gold Country');
document.write('<option value="HoneymoonCabins.html">&#149;Honeymoon cabins in the woods');
document.write('<option value="Lighthouse.html">&#149;East Brother Lighthouse B&amp;B');
document.write('<option value="Desert.html">&#149;Desert Getaways');
document.write('<option value="Lookout.html">&#149;US Forest Service Fire Lookout');
document.write('<option value="DonnerLake.html">&#149;Visit Donner Lake');
document.write('<option value="ColumbiaHotel.html">&#149;Fly in to historic Columbia');
document.write('<option value="Catalina.html">&#149;Explore Catalina Island');
document.write('<option value="map.html">&#149;Map');
document.write('<option value="Join/howtojoin.html">&#149;How To Join');
document.write('<option value="Magazines.html">&#149;Subscribe to more ideas');
document.write('<option value="travelsearch.html">&#149;Search with our Travel Center');
document.write('<option value="http://www.hiddencalifornia.com/default.html">&#149;Home Page');
document.write('</select>');
document.write('<input type=button value="Go!" onClick="javascript:formHandler()">');
document.write('</form>');
