document.write("<form name=foreign>");
dropdown='';
dropdown=dropdown + '<select name="selcity" onChange="return drop_foreign()">';
dropdown=dropdown + '<option value="" selected>Foreign Shores</option>';
dropdown=dropdown + '<option value="/aktravels/australia/default.htm">Australia</option>';
dropdown=dropdown + '<option value="/aktravels/egypt-africa/default.htm">Egypt and Africa</option>';
dropdown=dropdown + '<option value="/aktravels/europe/default.htm">Europe</option>';
dropdown=dropdown + '<option value="/aktravels/exotica/default.htm">Exotica Islands</option>';
dropdown=dropdown + '<option value="/aktravels/orient/default.htm">Far east and Orient</option>';
dropdown=dropdown + '<option value="/aktravels/middle-east/default.htm">Middle east</option>';
dropdown=dropdown + '<option value="/aktravels/newzealand/default.htm">New Zealand</option>';
dropdown=dropdown + '</select>';
document.write(dropdown);
document.write("</form>");

function drop_foreign()
{
	var val=document.foreign.selcity.options[document.foreign.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");
}
