If there are no other graphical objects with text wrapping in the document, you could use a macro such as:
Code:
Sub Demo()
Application.ScreenUpdating = False
With ActiveDocument
Do While .Shapes.Count > 0
.Shapes(1).Delete
Loop
End With
Application.ScreenUpdating = True
End Sub