function clearTextbox(obj, defaultText)
{
    if(obj.value == defaultText)
    {
        obj.value="";
    }
}