$.ajax({
url: '/calc.php',
type: 'POST',
data: {
'type': type, // Значение type будет например 50
'control': control // Значение control будет например 20
},
dataType: "json",
success: function (json) {
prices=jQuery.parseJSON(json);
$('#prices').html(formatRight(prices));
},
});