var text = 'Geben Sie eine PLZ oder Ort ein...';

function focusText( id ) {
	value = document.getElementById( id ).value;
	if ( value == text ) document.getElementById( id ).value = '';
	
	return true;
}

function blurText( id ) {
	value = document.getElementById( id ).value;
	if ( value == '' ) document.getElementById( id ).value = text;
	
	return true;
}