Display latest post of taxonomy

You can do a straight query for the taxonomy term:

query_posts( array( 'review' => 'movie' ) );

To query multiple terms you can use tax_query:

'tax_query' =>     array(
            'taxonomy' => 'review',
            'field' => 'slug',
            'terms' => array( 'movie', 'term', 'term' ),
        ),