function suggestion(element, strToCompare)
{
	if (element.value == strToCompare)
	{
		element.value = '';
		element.style.color = '#000';
	}
	
}
