var combo11=new Array()
combo11[0]=new Option("Select","#")
combo11[1]=new Option("ROME","#")
combo11[2]=new Option("- - Circolo del Golf di Roma Acquasanta","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=14&Itemid=141")
combo11[3]=new Option("- - Country Club Castelgandolfo","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=13&Itemid=142")
combo11[4]=new Option("- - Fioranello Golf Club","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=6&Itemid=143")
combo11[5]=new Option("- - Golf Club Arco di Costantino","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=15&Itemid=144")
combo11[6]=new Option("- - Golf Parco di Roma","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=10&Itemid=146")
combo11[7]=new Option("- - S. S. Marco Simone","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=12&Itemid=151")
combo11[8]=new Option("- - Sheraton Golf Parco de' Medici","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=9&Itemid=152")
combo11[9]=new Option("VITERBO","#")
combo11[10]=new Option("- - Golf Club Le Querce","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=11&Itemid=145")

var cacheobj1=document.dynamiccombo1.stage21

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(combo11)


