function eraseIfEquals(input) {
    if (input.value == input.defaultValue) {
        input.value = '';
    }
}

