function AddOption () {
	var select_problem = document.getElementById('select_problem');
	var theme_select = document.getElementById('theme_select');
	adress = location.href + '#contact-form';
	select_problem.innerHTML = theme_select.innerHTML + '<a id="submit_ask" href="'+adress+'"></a>';
	first_select = document.getElementsByTagName('select');
	first_select[0].onchange = function () {		first_select[1].value = first_select[0].value;
		first_select[1].text = first_select[0].text;
	}
}
