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

