?>
" />

<div class="input-form">
    <fieldset class="group_form"><legend class="group_form"><?php 
echo _AT('test_open');
?>
</legend>
    <div class="row">
        <label for="cats"><?php 
echo _AT('category');
?>
</label>
        <select name="category_id" id="cats">
            <?php 
print_question_cats($_POST['category_id']);
?>
        </select>
    </div>

    <div class="row">
        <span class="required" title="<?php 
echo _AT('required_field');
?>
">*</span><label for="question"><?php 
echo _AT('question');
?>
</label>
        <?php 
print_VE('question');
?>
		<input type="hidden" name="tid" value="<?php 
echo $tid;
?>
" />
		<div class="row">
			<label for="cats"><?php 
echo _AT('category');
?>
</label><br />
			<select name="category_id" id="cats">
				<option value="-1"><?php 
echo _AT('cats_all');
?>
</option>
				<?php 
print_question_cats($_GET['category_id']);
?>
			</select>
		</div>
		<div class="row buttons">
			<input type="submit" name="filter" value="<?php 
echo _AT('filter');
?>
" />
			<input type="submit" name="reset_filter" value="<?php 
echo _AT('reset_filter');
?>
" />
		</div>
		</form>
</fieldset>