$(function(){
	$('#firm').keypress(function(){
		if($(this).val()!=""){
			$('#cvr-label').show();
			$('#cvr-element').show();
		}
	});
		  
	$('#firm').focusout(function(){
		if($(this).val()==""){
			$('#cvr-label').fadeOut();
			$('#cvr-element').fadeOut();
		}
	});

});
