// JavaScript Document
function remove(element) {
	var x=document.getElementById(element);
	x.parentNode.removeChild(x);
}