function changeDescription(id, text) {
	var element = document.getElementById(id);
	element.innerHTML = text;
}
