var combo1=new Array()
combo1[0]=new Option("Select","#")
combo1[1]=new Option("NAPLES","#")
combo1[2]=new Option("- - Holiday Inn Report Naples-Castelvolturno****","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=58&Itemid=192")


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)

