var getCashe = function (){
    $.ajax({
        type: "POST",
        cashe: false,
        data:{},
        url: "/filters/ajax/get-sum-cashe",
        success: function(msg){
            $('#cashValue').html(msg);
        }
    });
    setTimeout(getCashe, 6000);
}

$(document).ready(function(){
    getCashe();
});
