Hi,
Open wp-includes/widgets.php file at your local and edit it..you need to do it as these:
Find this line:
$d = $options[$number]['dropdown'] ? '1' : '0';
Add this line below this line:
$ex = "1,2,3";
1,2,3 are the categories which you would like to exclude..
Find this line:
$cat_args = array('orderby' => 'name', 'show_count' => $c, 'hierarchical' => $h);
replace with:
$cat_args = array('orderby' => 'name', 'show_count' => $c, 'hierarchical' => $h, 'exclude' => $ex );
Save the file and upload it on the server again..you can replace the category ID with your desired one..
Thanks,
Shane G.