function clearInstructions(field) {
	var s = field.value;
	var fieldStart = s.substring(0,6);
	if (fieldStart == ' Enter') {
		field.value = '';
	}
}