Помогите пожалуста как обновить плагин в этом коде?
var ajax = new Array();
function getRegionList(sel){
var countryCode = sel.options[sel.selectedIndex].value;
var region = document.getElementById('region');
region.options.length = 0;
if(countryCode.length > 0){
var index = ajax.length;
ajax[index] = new sack();
ajax[index].requestFile = 'takesettings.php?country='+countryCode;
ajax[index].onCompletion = function(){
createRegion(index);
};
ajax[index].runAJAX();
}
}
function createRegion(index) {
var obj = document.getElementById('region');
eval(ajax[index].response);
getCityList(obj);
}
function getCityList(sel){
var regionCode = sel.options[sel.selectedIndex].value;
var city = document.getElementById('city');
city.options.length = 0;
if(regionCode.length > 0) {
var index = ajax.length;
ajax[index] = new sack();
ajax[index].requestFile = 'takesettings.php?region='+regionCode;
ajax[index].onCompletion = function(){
createCities(index);
};
ajax[index].runAJAX();
}
}
function createCities(index) {
var obj = document.getElementById('city');
eval(ajax[index].response);
}