var combo1=new Array()
combo1[0]=new Option("Select","#")
combo1[1]=new Option("VENICE","#")
combo1[2]=new Option("- - Hotel Ca' dei Conti****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=24&Itemid=163")
combo1[3]=new Option("- - Hotel Villa Mabapa****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=34&Itemid=165")
combo1[4]=new Option("PADUA","#")
combo1[5]=new Option("- - Bristol Buja Thermae Hotel*****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=25&Itemid=155")
combo1[6]=new Option("- - Hotel Majestic**** - IFA Terme di Galzignano","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=23&Itemid=166")
combo1[7]=new Option("- - Hotel Splendid**** - IFA Terme di Galzignano","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=22&Itemid=167")
combo1[8]=new Option("- - Hotel Sporting**** - IFA Terme di Galzignano","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=21&Itemid=168")

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)

