  $(function() {
   //	 $('.error').hide();
    $("#submitPlanChange").click(function() {
      // validate and process form here
      var rff = $("input[name='plan']").val();
      var five = $("input#five").val();
      var ten = $("input#ten").val();
      var half = $("input#half").val();
      var marathon = $("input#marathon").val();
      
      
      var dataInput = "RFF: " + rff + "     5K: " + five + "     10K: " +  ten + "     Half: " + half + "     Marathon: " + marathon;
      var dataString = 'name='+ "" + '&email=' + "" + '&phone=' + "";
	  alert (dataInput);return false;
  $.ajax({
    type: "POST",
    url: "bin/process.php",
    data: dataString,
    success: function() {
      $('#contact_form').html("<div id='message'></div>");
      $('#message').html("<h2>Contact Form Submitted!</h2>")
      .append("<p>We will be in touch soon.</p>")
      .hide()
      .fadeIn(1500, function() {
        $('#message').append("<img id='checkmark' src='images/check.png' />");
      });
    }
  });
  return false;
  

    });
  });
  
