function restoreText(that, placeholder) {
    if (that.value.length == 0) {
        that.value = placeholder;
    }
}