function get_prices(fuelid, intid) {
    $.ajax({
        type: "POST",
        url: "/ajax/get_prices.php",
        data: "fuelid=" + fuelid + "&intid=" + intid,
        success: function(data){
            $("#curr_prices .price-fuel-item").html(data);
        }
    });
}

$(document).ready(function(){
    cur_fuelid = 11;
    cur_intid = $("#price_volume_checker select").val();
    get_prices(cur_fuelid, cur_intid);

    $("#price_fuel_checker .common-dashed").click(function(){
        $("#price_fuel_checker .grbut").removeClass("grbut");
        $(this).parent().parent().addClass("grbut");
        cur_fuelid = $(this).attr("id");
        $("#curr_prices .price-fuel-item").html('<div class="loading"></div>');
        get_prices(cur_fuelid, cur_intid);
        return false;
    });

    $("#price_volume_checker select").change(function(){
        cur_intid = $("#price_volume_checker select").val();
        $("#curr_prices .price-fuel-item").html('<div class="loading"></div>');
        get_prices(cur_fuelid, cur_intid);
    });
});