﻿function ClearTextBox(box, defaultText)
{
	if(box.value == defaultText)
	{
		box.value = "";
	}
}

