var drp = document.getElementById("edit-field-city-value");
drp.options.length == 1; // Clear all existing values except first
$.each(AjaxData, function(v, k) {
       drp.options[drp.options.length] = new Option(k, v);
});

Reply via email to