function clearDefault(field, default_str) {
	if (field.value == default_str) {
		field.value = "";
	}
}