function nur_zahlen(that) {
		var val = that.value.replace(/[^\.^,\d]/g, '');
  	that.value = val;
	}

