$(function () {
	var introText;
	$('p.intro a').each(function(){
		introText = $(this).text(); 
		$(this).html(introText);
	});

	$("div.select select").change(function () {
		var str = "";
		str = $("select option:selected").attr('value');
		if (str != '--Выберите регион--') {
			//alert('Переходим на сайт '+str);
			window.location = str;
		}
	});
});
