var ajax = new Array();
function getCityList(sel)
{var countryCode = sel.options[sel.selectedIndex].value;
	document.getElementById('config').options.length = 0;
	if(countryCode.length>0){
		var index = ajax.length;
		ajax[index] = new sack();
	    ajax[index].requestFile = 'http://www.essentialbeauty.com.au/index.php/hidden/getCities_recipient?countryCode='+countryCode;	
		ajax[index].onCompletion = function(){ createCities(index) };
		ajax[index].runAJAX();	
	}}

function createCities(index)
{
	var obj = document.getElementById('config');
	eval(ajax[index].response);}
function getSubCategoryList(sel){
	var category = sel.options[sel.selectedIndex].value;
	document.getElementById('dhtmlgoodies_subcategory').options.length = 0;
	if(category.length>0){var index = ajax.length;ajax[index] = new sack();
		ajax[index].requestFile = 'getSubCategories.php?category='+category;
		ajax[index].onCompletion = function(){ createSubCategories(index) };
		ajax[index].runAJAX();
	}}function createSubCategories(index)
{	var obj = document.getElementById('dhtmlgoodies_subcategory');
	eval(ajax[index].response);}		
