	function wxlFillList(s,d,t,v){
		var Re = /[^abcdefghijklmnopqrstuvwxyz_0123456789]/gi;
		var SList = document.getElementById(s);
		var DList = document.getElementById(d);
		DList.options.length = 0;
		if(SList.selectedIndex == -1 && SList.options.length > 0){SList.options[0].selected=true;}
		if(t && v){DList.options[DList.options.length] = new Option(t, v);}
		var ArrayExists = eval('typeof ' + SList.id + '_' + SList.options[SList.selectedIndex].value.replace(Re,"") + ' != "undefined"');
		if(ArrayExists){
			eval("var Arr = " + SList.id + '_' + SList.options[SList.selectedIndex].value.replace(Re,""));
			for(var i=0; i<Arr.length; i++){
				DList.options[DList.options.length] = new Option(Arr[i][1], Arr[i][0]);
			}
		}
	}
