You have to switch off the partitions you don't want any more with ALTER TABLE {table_name} SWITCH PARTITION {partition number} TO {destination table}. Thereafter you can drop the table if you don't want that data. You can also merge the partitions with ALTER PARTITION FUNCTION {name} MERGE RANGE({value}).
Look up ALTER TABLE and ALTER PARTITION in BOL.