function phone_submit() {
    country= document.getElementById('countrycode').value;
    code   = document.getElementById('citycode').value;
    phone  = document.getElementById('phonenumber').value;
    name   = document.getElementById('name').value;
    if(phone=='') return false;

    $.get("/test.php", { country: country, code: code, phone: phone, name: name }, function(data){
      alert("Данные отправлены: " + data);
      //$(\"#f_name\").fadeOut();
      document.getElementById('f_name').style.display='none';
      $("#f_phone").fadeIn();
    });
}

function step2() {
    country= document.getElementById('countrycode').value;
    code   = document.getElementById('citycode').value;
    phone  = document.getElementById('phonenumber').value;
    if(phone=='') return false; 
    $("#f_phone").fadeOut();
    document.getElementById('f_phone').style.display='none';
    $("#f_name").fadeIn();
}

