$(document).ready(function() {
  /*alert($('#captcha').find('.form_error').html().length);*/
  if($('#captcha').find('.form_error').html().length<17)
    $('#captcha').hide();
  $('#user_code').val('');
  
  $('#prosba .submit').click(function(){
    $('#captcha').show();
    if($('#user_code').val()!='')
        return true;
    else
        return false;
})
});

