$(document).ready(function () {
    $.localScroll();

    $('#currencyform').change(function() {
      set_prices();
      return false;
      });
    })


  function set_prices() {
    var str = $('#currencyform').serialize();
    jQuery.ajax({
      data: str,
      dataType: "json",
      type: "POST",
      cache: false,
      url: "/ajax/get_prices/",
      timeout: 10000,
      error: function() {},
      success: function(data, textStatus) {
        if (data.status == 'ok') {
          $.each(data.prices, function(plan, price) {
            $('#price'+plan).html(data.symbol+price+'/month');
          });
        }
      },
    })
  }

