var combo1=new Array()
combo1[0]=new Option("Select","#")
combo1[1]=new Option("FLORENCE","#")
combo1[2]=new Option("- - Grand Hotel Villa Medici*****L","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=81&Itemid=226")
combo1[3]=new Option("- - Villa La Massa*****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=74&Itemid=217")
combo1[4]=new Option("- - Atlantic Palace Hotel****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=80&Itemid=227")
combo1[5]=new Option("- - UNA Poggio dei Medici Golf & Resort****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=51&Itemid=184")
combo1[6]=new Option("- - Hotel Paris***sup","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=79&Itemid=228")
combo1[7]=new Option("- - Machiavelli Palace Hotel***sup","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=78&Itemid=229")
combo1[8]=new Option("PISTOIA","#")
combo1[9]=new Option("- - Grand Hotel Tamerici & Principe****Deluxe","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=98&Itemid=242")
combo1[10]=new Option("- - Hotel Adua & Regina di Saba****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=99&Itemid=243")
combo1[11]=new Option("PRATO","#")
combo1[12]=new Option("- - Hotel Paggeria Medicea****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=37&Itemid=178")
combo1[13]=new Option("- - Apartments Artimino","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=50&Itemid=169")
combo1[14]=new Option("PISA","#")
combo1[15]=new Option("- - Green Park Resort*****s","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=100&Itemid=244")
combo1[16]=new Option("LUCCA","#")
combo1[17]=new Option("- - Hotel Astor****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=38&Itemid=177")
combo1[18]=new Option("GROSSETO","#")
combo1[19]=new Option("- - Cordial Golf Residence Il Pelagone****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=136&Itemid=292")
combo1[20]=new Option("- - Terme di Saturnia Spa & Golf Resort****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=52&Itemid=182")
combo1[21]=new Option("- - Montebelli Country Hotel****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=36&Itemid=179")
combo1[22]=new Option("- - Golf Hotel Punta Ala****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=114&Itemid=270")

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)

