First off, it should be '==', not '=':
if ($myrow["Point"] == "contains the term Average")
And for your question, you should use strpos:
if (strpos($myrow["Point"],"Average"))
strpos() returns FALSE if it doesn't find "Average", so you can use it in the IF statement.
Diego