function clearValueOnFocus(thisId,defaultValue)
{
    var id = document.getElementById(thisId);
    if (id.value == defaultValue) {
            id.value = '';
            id.style.color = '#000000';
    }
}
