function send_price_req(url){
	$.ajax({
		type: "GET",
		url: url,
		success: function(html){
			if (html){
				$("#price_block").html(html)
				update_price();
			}
		}
	});
}

function update_price(){
	$("#fiz").click(function(){
		send_price_req("/price/ajax-fiz/");
		return false;
	});

	$("#korp").click(function(){
		send_price_req("/price/ajax-korp/");
		return false;
	});
	$("#full").click(function(){
		send_price_req("/price/ajax-full/");
		return false;
	});
}

$(document).ready(function(){
	update_price();
});

