Try taking the tablespace offline if not successful then try using immediate or drop option:

ALTER DATABASE DATAFILE 'blah.dbf' OFFLINE IMMEDIATE;
ALTER DATABASE DATAFILE 'blah.dbf' OFFLINE DROP;

After the datafiles have been taken offline, you should be able to drop the tablespace.

Take into consideration your backups on the DB if any...