$(document).ready(function() {
	$('#textsend').bind('keydown keypress keyup',function(e) {
		l = $('#textsend').val().length;
		$('#symbCount').text('Введено символов: '+l);
    });	
});
