function change_topic(value) {
	if (value == 1) {
		document.getElementById('another').style.display = 'block';
	} else {
		document.getElementById('another').style.display = 'none';
	}
}
