$(document).ready(function () {
   var origPrice = '';
   var preText = $('#selCena option:selected').text();
   $('#selCena').bind('change', function () {
        var text = $('#selCena option:selected').text();
       
        if (text == 'Kč') {
            $('#tempBox').remove();
            $('#txtCena').show();
            $('#txtCena').attr('value', origPrice);                        
        } else { 
        // if it's not equal to Kc, block input field
            if (text != 'Kč') {
                // clear input field
                if(preText == 'Kč')
                    origPrice = $('#txtCena').attr('value');
                $('#txtCena').attr('value', '');
    
                // hide input field
                $('#tempBox').remove();
                $('#txtCena').hide().after('<div id="tempBox"></div>');
    
                $('#tempBox').css({
                   //'border' : '1px solid #CAD7E3',
                   'width' : '116px',
                   'background' : 'none repeat scroll 0 0 #EBF0F5',
                   'height' : '29px',
                   'margin-right' : '10px',
                   'float' : 'left',
                });
            }
        }
        preText = text; //for check what option has been selected before
   });
});

