
var str;

function countOferty()
{

 topOne =  $('#top1').val();
 topTwo =  $("#top2").val();
 topTree=  $("#top3").val();

ostr = str;
str = "./oferty/zliczaj/t1/"+topOne+"/t2/"+topTwo+"/t3/"+topTree;

if(ostr != str){
$.getJSON( str ,

    function(msg){
        tresc = msg.ilosc+" "+fleksja(msg.ilosc)+"!";
        $("#ofertyCount").html(tresc);
    }
);
}

function fleksja(l){

    if (l%10 ==2 || l%10 ==3 || l%10 == 4){
        return 'Oferty';
    }
    else if(l==1){
        return 'Oferta';
    }
    else {
        return 'Ofert';
    }

}

}