Separate the projected data set into the CITIESP Annotate data set and the US48P map data set.
data citiesp us48p;
   set allp;
   if state>100 then output citiesp;
   else output us48p;
run;