function loadCurrencyDropDown(controlID){
	engDropDowns.getCurrencies(controlID, callback_loadCurrencyDropDown);
}

function callback_loadCurrencyDropDown(res){
	var controlTable = res.value.Tables[0];
	var control = document.getElementById(controlTable.Rows[0].controlName);
	
	var currencyTable = res.value.Tables[1];
	
	var def = document.createElement("option");
	def.innerHTML = "Please make a selection";
	def.value = "0";
	
	control.appendChild(def);
	
	for (var i=0; i<currencyTable.Rows.length; i++)
		{
		var opt = document.createElement("option");
		opt.innerHTML = currencyTable.Rows[i].Currency_Html + " - " + currencyTable.Rows[i].Currency_Name;
		opt.value = currencyTable.Rows[i].Currency_ID;
		
		control.appendChild(opt)
		}
	
	loadCountryDropDown('ddCountry');
}