function security_ids_enable_change(f)
{
	if (f.security_ids_enable.checked) {	// enabled
		document.getElementById("row_security_drop_malpkt").className = "data_visible";
	} else {
		document.getElementById("row_security_drop_malpkt").className = "data_invisible";
	}
}


