Я использую примерно такой код для отправки форм, назначаю только id разные
$("form").submit(function () {
var idform = $(this).attr("id");
var name = $(this).find(".name").val();
var cost = $(this).find(".cost").val();
var city = $(this).find(".city").val();
.....................
if (error > 0) {
return false;
}
else {
$.post("/send.php",
{
'name': name,
'cost': cost,
'city': city,
'act': "operator"
},
function (result) {
if (result == '1') {
$('#'+idform).html('<p>Заявка отправленна</p>');
}
else
alert("Произошла ошибка при отправке.");
}
);
}
return false;
});