function clearValue(inputtext, value) {
	if (inputtext.value == value) {
		inputtext.value = '';
	}
}

