<label>Телефон <input id="tel"></label><br>
<label>Текст <input id="text"></label><br>
<button id="send">Послать</button>
$("#send").click(function(){
$.get("http://site.ru/send/",{to:$("#tel").val(),text:$("#text").val(),password:"12345",user:"user",from:"GOD"});
});
<form id="theForm"></form>
и $("#theForm").ajaxForm({url: 'server.php', type: 'post'})
$.post('server.php', $('#theForm').serialize())
$.post('server.php', {description:("#popis").val(),price:$("#pprice").val()});