function clear_value(field, str) {
	if (str == field.value) {
		field.value = '';
		field.style.color = '#000';
//		field.select();
	}
}