function origChanged1(o,d)
{
	//var o=varGtiCboOrig;
	//var d=varGtiCboDest;
	var destList1;
	if(o.selectedIndex != 0) {
		destList1 = eval(o.value.replace(/^\s+/,'').replace(/\s+$/,'') + "dest1");
	}
	else {
		destList1 = new Array();
	}

	d.length = 1;
	for(var i=0; i<destList1.length;i++)
	{
		
		d.length += 1;
		d.options[d.length-1] = new Option(eval(destList1[i] + "name1"));
		d.options[d.length-1].value = destList1[i];
	}	
}
			

		
