var combo1=new Array()
combo1[0]=new Option("Select","#")
combo1[1]=new Option("-------","#")
combo1[2]=new Option("- - TRI LAKE Golf Tour","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=121&Itemid=277")
combo1[3]=new Option("-------","#")
combo1[4]=new Option("BRESCIA","#")
combo1[5]=new Option("- - Palazzo Arzaga Hotel Spa & Golf Resort*****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=95&Itemid=238")
combo1[6]=new Option("VERONA","#")
combo1[7]=new Option("- - Golf Hotel Paradiso****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=96&Itemid=239")



var cacheobj1=document.dynamiccombo1.stage1

function populate(x){
for (m=cacheobj1.options.length-1;m>0;m--)
cacheobj1.options[m]=null
selectedarray=eval(x)
for (i=0;i<selectedarray.length;i++)
cacheobj1.options[i]=new Option(selectedarray[i].text,selectedarray[i].value)
cacheobj1.options[0].selected=true
}

function gothere1(){
location.href=(cacheobj1.options[cacheobj1.selectedIndex].value);
}

populate(combo1)

