function changeGeoList(country_id, state_id, formname, fieldname, def, url2) {
    var win = top.loader.location.replace("/changelocation.php" + "?country_id=" + country_id + "&state_id=" + state_id + "&formname=" + formname + "&fieldname=" + fieldname + "&def=" + def + "&url2=" + url2);
    //document.all["loader"].src="/changelocation.php" + "?country_id=" + country_id + "&state_id=" + state_id + "&formname=" + formname + "&fieldname=" + fieldname + "&def=" + def + "&url2=" + url2;
}


function clearList(formname, fieldname) {
    eval("document." + formname + "." + fieldname + ".options.length = 0;");
}

function addListItem(formname, fieldname, pos, val, encval) {
    eval("document." + formname + "." + fieldname + ".options[" + pos + "] = new Option('" + val + "','" + encval + "');");
}

function setSelectedItem(formname, fieldname, pos) {
    eval("document." + formname + "." + fieldname + ".options[0] = null;");
    if (document.layers) { history.go(0); }
    eval("document." + formname + "." + fieldname + ".options[" + pos + "].selected = true;");
}

