var combo1=new Array()
combo1[0]=new Option("Select","#")
combo1[1]=new Option("PALERMO","#")
combo1[2]=new Option("- - Le Madonie Golf Resort*****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=106&Itemid=256")
combo1[3]=new Option("- - Hotel Acacia Resort****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=116&Itemid=272")
combo1[4]=new Option("CATANIA","#")
combo1[5]=new Option("- - Palmerston Etna Golf & Resort****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=117&Itemid=273")
combo1[6]=new Option("MESSINA","#")
combo1[7]=new Option("- - Hotel D’Orange D’Alcantara***","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=115&Itemid=271")

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)

