How To Hide 'track With Options' From The Admin Drop Down?

This is causing all sorts of headaches with it being selected by mistake. What is the easiest way to hide it please?

ok we have disabled options still - we need to get rid of these is there a quick way to remove lots of them?

-----

Edit I did it in the DB - deleted all with status = D and used this code to delete surplus descriptions:

DELETE FROM cscart_product_options_descriptions
WHERE NOT EXISTS (
SELECT *
FROM cscart_product_options
WHERE option_id=cscart_product_options_descriptions.option_id
)

thanks