$(document).ready(function() {
    $('body').mousedown(function(event) {
        var message = 'Правая кнопка не доступна';
        if (document.all) {
            if (event.button == 2) {
                alert(message);
                return false;
            }
        }
    });
    $('.priceSelect').change(function() {
        var id = '#pr' + $(this).attr('id').substr(2);
        var pId = '#pId' + $(this).attr('id').substr(2);
        $(id).val($(this).val());
        $(pId).val(this.options[this.selectedIndex].id.substr(2));
    });
    $('.formSend').click(function() {
        var id = '#fr' + $(this).attr('id').substr(2);
        $(id).submit();
    })
});
function disabelRightClick(event) {
    if (event.button) {
        alert(event.button);
    }
}
