$(function(){
  $(".cat-object-list .object-price-group select").change(function(){
    var select = $(this);
    var p = select.closest(".object-price-group").find(".price .p span");
    var price = select.find("option:selected").attr("title");
    var priceKey = select.find("option:selected").attr("value");

    //p.text(price);
    if (price != "0.00") { p.text(price+" р.") } else { p.text(" ") };
  });
})
