function ajax_submit(form, response) { 
  $.post('/ajax.module.php', $(form).serialize(), function(data) {
    $(response).html(data);
  });
}
