document.write("<form name=india>");
dropdown='';
dropdown=dropdown + '<select name="selcity" onChange="return drop_india()">';
dropdown=dropdown + '<option value="" selected>Incredible India</option>';
dropdown=dropdown + '<option value="/aktravels/adventure/default.htm">Adventure</option>';
dropdown=dropdown + '<option value="/aktravels/india-must-see/default.htm">India must see</option>';
dropdown=dropdown + '<option value="/aktravels/track/default.htm">Off the beaten track</option>';
dropdown=dropdown + '<option value="/aktravels/pilgrimage/default.htm">Pilgrimage</option>';
dropdown=dropdown + '<option value="/aktravels/spas-wellness/default.htm">Spas and wellness</option>';
dropdown=dropdown + '</select>';
document.write(dropdown);
document.write("</form>");

function drop_india()
{
	var val=document.india.selcity.options[document.india.selcity.selectedIndex].value;
	if (val !="")
	document.location=val;
	// window.open(val,"","width=760,height=410,scrollbars=yes ,menubar=no,location=no,left=0,top=0");
}
