var combo1=new Array()
combo1[0]=new Option("Select","#")
combo1[1]=new Option("BARI","#")
combo1[2]=new Option("- - Masseria San Domenico***** Deluxe","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=56&Itemid=202")



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)

