function loadCountryDropDown(controlID){
	engDropDowns.getCountries(controlID, callback_loadgetCurrenciesDropDown);
}

function callback_loadgetCurrenciesDropDown(res){
	var controlTable = res.value.Tables[0];
	var country = document.getElementById(controlTable.Rows[0].controlName.toString());
	
	var countryTable = res.value.Tables[1];
	
	var def = document.createElement("option");
	def.innerHTML = "Please make a selection";
	def.value = "0";
	
	country.appendChild(def);
	
	for (var i=0; i<countryTable.Rows.length; i++)
		{
		var opt = document.createElement("option");
		opt.innerHTML = countryTable.Rows[i].Country_Name;
		opt.value = countryTable.Rows[i].Country_ID;
		
		country.appendChild(opt)
		}
	
	loadAccTypes('lstAccTypes');
}

