jQuery(function() {

  jQuery("#edit-next").click(function() {
    changetext();
  });
  
  function changetext()
  {
    if(Drupal.wateraidDonationForms.model.get("frequency") == "recurring")
      jQuery('.donation-amount-info').text("You will be making a monthly donation of $" + Drupal.wateraidDonationForms.model.get("amount"));
    else
      jQuery('.donation-amount-info').text("You are donating $" + Drupal.wateraidDonationForms.model.get("amount"));
  }
  
  changetext();
  //Hide the text if on the first step
  if(jQuery("#step-1").is(":visible"))
      jQuery('.donation-amount-info').text("");

});