

var combo1=new Array()
combo1[0]=new Option("***** CERCA QUI LA TUA STRUTTURA -10% *****","#")
combo1[1]=new Option("Sicilia - HOTEL CAESAR PALACE 4****","http://www.vacanzerei.com/index.php/Sicilia/prezzi-Caesar")
combo1[2]=new Option("---------------------------------------------------------","#")
combo1[3]=new Option("Sardegna - BAIA ARANZOS CLUB HOTEL 4****","http://www.vacanzerei.com/index.php/Sardegna/Prezzi-Baia-Aranzos-3*")
combo1[4]=new Option("---------------------------------------------------------","#")
combo1[5]=new Option ("Creta - HOTEL 4****","http://www.vacanzerei.com/index.php/Creta/Hotel-4*")
combo1[6]=new Option("---------------------------------------------------------","#")
combo1[7]=new Option("Mykonos - APHRODITE BEACH 4****","http://www.vacanzerei.com/index.php/Mykonos/Prezzi-Aphrodite")
combo1[8]=new Option("---------------------------------------------------------","#")
combo1[9]=new Option("Tenerife - COMPOSTELA BEACH 3***","http://www.vacanzerei.com/index.php/Tenerife/Prezzi-Compostela-Beach")
combo1[10]=new Option("---------------------------------------------------------","#")
combo1[11]=new Option ("Fuerteventura - STELLA PARADISE 4****","http://www.vacanzerei.com/index.php/Fuerteventura/Prezzi-Dunas-Paradise")
combo1[12]=new Option ("---------------------------------------------------------","#")
combo1[13]=new Option("Sharm el Sheikh - CORAL HILLS RESORT 4****","http://www.vacanzerei.com/index.php/Sharm-El-Sheik/Prezzi-Coral-Hills-4*")
combo1[14]=new Option("---------------------------------------------------------","#")
combo1[15]=new Option("Kenya - DOUBLE HEART 4****","http://www.vacanzerei.com/index.php/Kenya/Prezzi-Double-Heart-4*")
combo1[16]=new Option("---------------------------------------------------------","#")
combo1[17]=new Option("Mauritius - PALMAR BEACH 3***sup","http://www.vacanzerei.com/index.php/Mauritius/Prezzi-Veranda-Palmar")
combo1[18]=new Option("---------------------------------------------------------","#")
combo1[19]=new Option("Maldive - HOTEL 5*****","http://www.vacanzerei.com/index.php/Maldive/Hotel-5*")




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)


