let buttom_home_price = "";
let home_price = 0;
$("#buttom-home-price input:checked").each(function(){
buttom_home_price += $(this).val();
});
if (buttom_home_price == "OPTIUP") {
home_price = home_price_optiup;
$("#footer-text-price").text("Итоговая стоимость дома OPTI UP");
$("#range").text("2.8");
} else if (buttom_home_price == "OPTI") {
home_price = home_price_opti;
$("#footer-text-price").text("Итоговая стоимость дома OPTI");
$("#range").text("2.6");
}
$("#buttom-home-price input").on('change', generator);