I'm new to regular expressions so this might not work!
<?php
$File = "http://www.remote.com/remote.html";
$Open = fopen( $File , 'r' );
$Content = fread( $Open , filesize( $File ) );
$Close = fclose( $Open );
preg_match( "#Latest[\\s]*Price[\\s]*List:[\\s]*<br>[\\s]*Last[\\s]*Change:[\\s]*([a-zA-Z0-9\\.\\s]+)[\\s]*#" , $Content , $Matches );
echo "<pre>";
print_r( $Matches );
echo "</pre>";
?>