function textClear(element) {
	if (!element.hasCleared) {
		element.value = '';
		element.hasCleared = true;
	}
}
