function feedbackInitAll() {
if (document.feedbackform.how.value!="Другое") {
	document.feedbackform.how_another.disabled=true;
	}
}

function feedbackInitBus() {
if (!document.feedbackform.service_type[3].checked) {
	for (var i = 1; i <= 5; i++) eval('document.feedbackform.sit'+i+'.disabled=true');
	}
}

function fielden(value) {
if (value=="Другое") 
	{
//	document.feedbackform.how_another.style.background="#ffffff";
//	document.feedbackform.how_another.style.bordercolor="#c0c0c0";
	document.feedbackform.how_another.disabled=false;
	} else {
//	document.feedbackform.how_another.style.background="#c0c0c0";
	document.feedbackform.how_another.disabled=true;
	}
}

function checken(radio) {
	var chk = $(radio).closest( 'li' ).find( 'ul input[type=checkbox]' );
	if ( chk.length ) {
		chk.removeAttr( 'disabled' );
	}
	else {
		$(radio).closest( 'ul' ).find( 'ul input[type=checkbox]' ).attr( 'disabled', 'disabled' );
	}
}

