$(document).ready(function(){
$('#widther, #profil, #radius, #brand').change(function () {
var parametr_widther = $("#widther :selected").val();
alert(parametr_widther);
$.ajax({
url: "ajaxik.php",
cache: false,
async: true,
type: "POST",
data: {widtherr: parametr_widther},
success: function (responce){
//$('h2').text('данные отправлены');
console.log(responce);
}
});
});
});
print_r($_POST);