function clearInputField(inpElem) {
	if (!inpElem.was_edited) {
		inpElem.value = "";
		inpElem.was_edited = true;
	}
}

