var combo3=new Array()
combo3[0]=new Option("Select","#")
combo3[1]=new Option("- - TRI LAKE Golf Tour","http://www.touristgolfitaly.com/index.php?option=com_content&task=view&id=121&Itemid=277")

var cacheobj3=document.dynamiccombo3.stage3

function populate(x){
for (m=cacheobj3.options.length-1;m>0;m--)
cacheobj3.options[m]=null
selectedarray=eval(x)
for (i=0;i<selectedarray.length;i++)
cacheobj3.options[i]=new Option(selectedarray[i].text,selectedarray[i].value)
cacheobj3.options[0].selected=true
}

function gothere3(){
location.href=(cacheobj3.options[cacheobj3.selectedIndex].value);
}

populate(combo3)

