var combo1=new Array()
combo1[0]=new Option("Select","#")
combo1[1]=new Option("ROME","#")
combo1[2]=new Option("- - Boutique Hotel Trevi****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=18&Itemid=139")
combo1[3]=new Option("- - Castelgandolfo Golf and Resort****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=17&Itemid=140")
combo1[4]=new Option("- - Grand Hotel Villa Tuscolana****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=77&Itemid=220")
combo1[5]=new Option("- - Hotel Castello della Castelluccia****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=16&Itemid=147")
combo1[6]=new Option("- - Kolbe Hotel Rome****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=8&Itemid=148")
combo1[7]=new Option("- - Marriott Grand Hotel Flora****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=5&Itemid=149")
combo1[8]=new Option("- - Park Hotel Villa Grazioli****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=7&Itemid=150")
combo1[9]=new Option("- - Sheraton Golf Parco de' Medici Hotel & Resort****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=4&Itemid=153")
combo1[10]=new Option("- - Best Western Hotel Villafranca***sup","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=19&Itemid=137")
combo1[11]=new Option("- - Hotel Antica Colonia***","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=82&Itemid=225")


var cacheobj=document.dynamiccombo.stage2

function populate(x){
for (m=cacheobj.options.length-1;m>0;m--)
cacheobj.options[m]=null
selectedarray=eval(x)
for (i=0;i<selectedarray.length;i++)
cacheobj.options[i]=new Option(selectedarray[i].text,selectedarray[i].value)
cacheobj.options[0].selected=true
}

function gothere(){
location.href=(cacheobj.options[cacheobj.selectedIndex].value);
}

populate(combo1)

