function charCounter(field, counter, maxChars) {
	$('counter' + counter).innerHTML = (maxChars - field.length);
}

