
	function CheckForDisabled() {
	// checks to see if the selected OPTION has a disabled attribute
	if (document.profile.org_tip.options[document.profile.org_tip.selectedIndex].disabled) {

	// Now reset the drop down list so that the first item is selected.
    // If you didn't do this, the *disabled* item would still be selected
    //document.profile.org_tip.selectedIndex = 3;
	alert( 'Вы не можете изменять вид организации !!!' );
	}
}