function selectId(id) {
	var div, event;
	
	if (document.getElementById('event')) {
		event = document.getElementById('event');
		event.parentNode.removeChild(event);
	}
	
	div = document.createElement("span");
	div.setAttribute('id', 'event');
	div.style.cssText = 'position:absolute;color:red;background:yellow';
	div.appendChild(document.createTextNode("Hello"));
	document.getElementById(id).appendChild(div);
}
/*
	var f, v, result;
	f = document.createElement("dt");
	s = document.createElement("small");
	s.appendChild(document.createTextNode(field+':'));
	f.appendChild(s);
	v = document.createElement("dd");
	v.appendChild(document.createTextNode(value));
	f.appendChild(v);
	l.appendChild(f);
*/
