r=new Array(10);
var country = -1;
var itemsIndex;
function newCountry(){
	country++;
	r[country] = new Array();
	itemsIndex = 0;
}
function R(txt,url) {
	r[country][itemsIndex]=new myOptions(txt,url);
	itemsIndex++;
}
function myOptions(text,value){
	this.text = text;
	this.value = value;
}
newCountry();
R("The World","0");
R("Africa","1");
R("Antarctica","29");
R("Australia and the South Pacific","30");
R("Caribbean","48");
R("Central and South America","71");
R("Europe","88");
R("Far East","118");
R("Middle East","125");
R("North America","140");
R("South and Southeast Asia","145");
function relateRegions(formName,elementNum,j) {
with (document.tripSearch.regions) {
	for(i=0;i<r[j].length;i++){
		options[i] = new Option(r[j][i].text,r[j][i].value); 
	   }
	    options[0].selected = true;
	}
 }
