function calculateJobpostPrice(){
 var options = {
 	 url: "/pracodawca/profile/api/price_calculator.php",
     target: '#final_price'
 };
 $('#jobpostformorder').ajaxSubmit(options);
}

function calculateJobpostPrice2(){
var options = {
 	 url: "/pracodawca/profile/api/price_calculator2.php",
     target: '#savings_amount'
 };
 $('#jobpostformorder').ajaxSubmit(options);
}

function calculatePrice(){
    $('#savings_amount').html("&nbsp;");
    calculateJobpostPrice();
    calculateJobpostPrice2();
}


function showAjaxIndicator(){
  $('#ajaxIndicatorDiv').show();
}

function hideAjaxIndicator(){
  $('#ajaxIndicatorDiv').hide();
}
