// This Function will auto clear the field only if the current value is the same as the default value

function autoClear(thisfield,defaultvalue)
{
	if (thisfield.value == defaultvalue)
	{
	  thisfield.value = '';
	}
}
