$(document).ready(function () {
   var origPrice = '';

   $('#selCena').bind('change', function () {
        var text = $('#selCena option:selected').text();

        // if it's not eaual to Kc, block input field
        if (text != 'Kč') {
            // clear input field
            origPrice = $('#txtCena').attr('value');
            $('#txtCena').attr('value', '');

            // hide input field
            $('#txtCena').hide().after('<div id="tempBox"></div>');

            $('#tempBox').css({
               'border' : '1px solid #CAD7E3',
               'width' : '136px',
               'background' : 'none repeat scroll 0 0 #EBF0F5',
               'height' : '47px',
               'margin-right' : '10px',
               'float' : 'left',
            });
        }

        if (text == 'Kč') {
            $('#tempBox').remove();
            $('#txtCena').show();
            $('#txtCena').attr('value', origPrice);                        
        }
   });
});

