$(document).ready(function() {
  $('#postcode-search-a').ajaxForm({
    beforeSubmit: function() {
    },
    success: function(data, textStatus) {
      $('.homepage-great-offers-promo .promo-right').html(data);
    },
    error: function(XMLHttpRequest, textStatus, errorThrown) {
    }
  });
  $('#postcode-search-a').submit(function() {
    $('.homepage-great-offers-promo .promo-right').html();
  });
});