$(document).ready(function() {
   $('#form_special').ajaxForm({
       dataType: 'json',
       success: processJson
   });
   $('#form_appointment').ajaxForm({
       dataType: 'json',
       success: processJson
   });
});
function processJson(data) {
  alert(data.message);
}

