Maybe you could try using CSS to hide what you don’t want to show? I don’t fully understand what it is you’re trying to do so it may not work.
E.g.
.widget ul.categories li
{
display:none;
}
.widget ul.categories li.cat-item-4
{
display:block;
}
Best of luck.