function clearbox() {
	box = document.getElementById('searchbox');
	if (box.value == 'model number') {
		box.value = '';
	}
}

function fillbox() {
	box = document.getElementById('searchbox');
	if (box.value == '') {
		box.value = 'model number';
	}
}