in reply to How do I select an option according to a specified value in HTML::Template::Pro?

Just for the records, if you have the possibility to use HTML::Template::Compiled and the plugin HTML_Tags:
Template:
<tmpl_html_option province>

Perl:
$htc->param( province => [ 'opt_2', # selected ['opt_1', 'option 1'], ['opt_2', 'option 2'], ], );
Output:
<option value="opt_1">option 1</option> <option value="opt_2" selected="selected">option 2</option>