var combo2=new Array()
combo2[0]=new Option("Select","#")
combo2[1]=new Option("-------","#")
combo2[2]=new Option("- - TRI LAKE Golf Tour","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=121&Itemid=277")
combo2[3]=new Option("-------","#")
combo2[4]=new Option("VERBANIA","#")
combo2[5]=new Option("- - Grand Hotel Bristol****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=122&Itemid=279")
combo2[6]=new Option("- - Hotel La Palma****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=125&Itemid=288")
combo2[7]=new Option("NOVARA","#")
combo2[8]=new Option("- - Hotel Lo Scoiattolo***","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=124&Itemid=278")
combo2[9]=new Option("VARESE","#")
combo2[10]=new Option("- - Golf Resort Le Robinie","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=123&Itemid=280")

var cacheobj2=document.dynamiccombo2.stage2

function populate(x){
for (m=cacheobj2.options.length-1;m>0;m--)
cacheobj2.options[m]=null
selectedarray=eval(x)
for (i=0;i<selectedarray.length;i++)
cacheobj2.options[i]=new Option(selectedarray[i].text,selectedarray[i].value)
cacheobj2.options[0].selected=true
}

function gothere2(){
location.href=(cacheobj2.options[cacheobj2.selectedIndex].value);
}

populate(combo2)


