docx2text

#!/bin/sh

unzip -p some.docx word/document.xml | \
sed -e 's/<[^>]\{1,\}>//g; s/[^[:print:]]\{1,\}//g'

Here's an applescript wrapper for the above that will return the plain text of the file on the clipboard.

--CBT