function killItem (id) {
	var d = document.getElementById('info');
	var target = document.getElementById(id);
	d.removeChild(target);
}