var currObFT = 0;
function showTextMore(ob) {
	$('.b-add-city .btn-text-more').removeClass("btn-text-more-active");
	$('.b-add-city .more').slideUp('slow');
	if (currObFT != ob) {
		var o = $(ob).parent().find('.more');
		if (o) {
			o.slideDown('slow');
			$(ob).addClass("btn-text-more-active");
			currObFT = ob;
		}
	} else {
		currObFT = 0;
	}
	return false;
}

function sendMsg(formCode) {
	//alert($('#q_form_' + formCode).serialize());

	$.post($('#q_form_' + formCode).attr('action'), $('#q_form_' + formCode)
			.serialize(), function(d) {
		if (d.status == 1) {
			alert(d.message);
			setCaptcha(formCode);
		} else {
			alert(d.message);
			setCaptcha(formCode);
		}
	}, "json");

	return false;
}

function showCountryList(id){
    $('.b-country-list').hide();
    $('#b-country-list-' + id).show();
}

