var combo1=new Array()
combo1[0]=new Option("Select","#")
combo1[1]=new Option("ORISTANO","#")
combo1[2]=new Option("- - Golf Hotel Is Arenas*****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=135&Itemid=291")
combo1[3]=new Option("CAGLIARI","#")
combo1[4]=new Option("- - Is Molas Hotel****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=110&Itemid=260")
combo1[5]=new Option("OLBIA","#")
combo1[6]=new Option("- - Il Piccolo Golf Hotel***","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=112&Itemid=262")


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)

