PL/SQLブロックからDDL文を直接実行することはできません。代わりにEXECUTEIMMEDIATEを使用する必要があります。
declare
i_cnt number;
begin
select count(1) into i_cnt
from dba_tables where table_name=upper('foo') and owner=upper('bar');
if i_cnt > 0 then
execute immediate 'drop table foo';
end if;
end;