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