function clear_input (input, default_value) {
	if (input.value == default_value) {
		input.value = "";
	}
}
