#!/bin/sh
w3m -dump -cols 1000 '1629869.html' | 
gawk '
/Service/{s=$1 $NF;}
(s=="BasicService" || s=="Expanded1" ) && /Fee:.*monthly/{
  print s, $3;
}'