function replength () {
	document.rep.count.value = document.rep.reason.value.length;
}

function check () {
	if ( document.rep.reason.value.length < 50 ) {
		alert( 'Your reason for adjustment must exceed 50 characters.' );
		return false;
	}
	
	return true;
}
