cant seem to get the response from this ajax post
$("#btn_update_shipping_cost").click(function(e){
var new_freight = 0;
$.post("/action.shipping.cost.php?page=get-adjusted-freight",{
current_weight : current_weight,
shipping_country:shipping_country
},
function(result){
new_freight = result;
});
});