var ajax = new sack();
var seldestinationobj;
var selsourceobj;
var selurl;
function initSelect(source, destination, url)
{
       seldestinationobj=destination;
       selsourceobj=source;
       selurl=url;
       getSelect();
}
function getSelect()
{
	//var countryCode = sel.options[sel.selectedIndex].value;
	ajax.requestFile = selurl;	// Specifying which file to get
	ajax.onCompletion = createSelect;	// Specify function that will be executed after file has been found
	ajax.runAJAX();		// Execute AJAX function
}
function createSelect()
{
	var obj = seldestinationobj;
	eval(ajax.response);	// Executing the response from Ajax as Javascript code	
}
