function clickClear(fInput, fDefault) {
    if (fInput.value == fDefault) {
        fInput.value = "";
    }
}

