function fieldErrorHighlight( Input ) {
	var $inp = $( Input ).addClass( 'warning' );
	$( 'label[for=' + $inp.attr( 'id' ) + ']' ).addClass( 'warning' );
	if ( $inp.is( '[type=text]' ) || $inp.is( 'textarea' ) ) {
		if ( $inp.attr( 'notice' ) ) {
			$inp.val( $inp.attr( 'notice' ) );
		}
		else if ( ! $inp.attr( 'notice' ) ) {
			$inp.attr( 'placeholder', 'Вы не заполнили поле' );
		}
		$inp.one( 'click', function() {
			$( 'label[for=' + $inp.attr( 'id' ) + ']' ).removeClass( 'warning' );
			$( this ).removeClass( 'warning' );
		} );
	}
}
