How about
Code:
Sub DeleteToEnd()
Dim oRng As Range
Set oRng = ActiveDocument.Bookmarks("\page").Range
oRng.Collapse 0 'end of page. If you want to delete from the start of the page change the 0 to 1
oRng.End = ActiveDocument.Range.End
oRng.Delete
Set oRng = Nothing
End Sub