function addCity(vformname,vvalue,vtext){
  if (document.getElementById("city_name")){
    fcity = document.getElementById("city_name");
  }
  if (fcity.length){
    flength=fcity.length;
    fcurrent=flength-1;
  }
  if (fcity[fcurrent]){
    fcity[fcurrent].selected=true;
  }
  if (fcity.options[fcurrent]){
    fcity.options[fcurrent].text=vtext;
    fcity.options[fcurrent].value=vvalue;
    if (fcity.options[fcurrent].label){
      fcity.options[fcurrent].label=vtext;
    }
  }
  var oOption = document.createElement("option");
  oOption.appendChild(document.createTextNode("Выбрать другой город..."));
  oOption.setAttribute("value", "1_1_1");
  fcity.appendChild(oOption);
}