var combo11=new Array()
combo11[0]=new Option("Select","#")
combo11[1]=new Option("PALERMO","#")
combo11[2]=new Option("- - Golf Club Le Madonie","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=105&Itemid=257")
combo11[3]=new Option("CATANIA","#")
combo11[4]=new Option("- - Il Picciolo Golf Club","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=111&Itemid=258")


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)


