$.ajax({ // AJAX запрос
type: "POST",
url: "handler.php",
dataType: "html",
data: {
name: vibor(forma, "otvet1")
},
error: function ($error) {
console.log($error);
},
success: function (data) {
alert(data);
}
});