$(document).ready(function() {
  $('#FormDisplayForm').submit(function() {
    // Get the zip code user entered
    var zip = $.trim($('#FormZip').val());
    // Build the redirect url. Redirect user to savings page with zip in query string
    var redirect_url = baseUrl + 'savings/all/' + zip;
    window.location = redirect_url;
    return false;
  });
});
