function clearText(that, placeholder) {
    if (that.value == placeholder) {
        that.value = "";
    }
}