How to Display the selected value when the option is selected in dropdown menu in phtml without using javascript.here is what i have tried so far!.i am trying this one in magento
<form action="<?php echo $this->getUrl('customer/products/simpleproduct') ?>" enctype="multipart/form-data" method="post" id="form-customer-product-new">
<table class="tablepostion">
<tr>
<td>
<select id="sizeoption">
<option value="1">Small</option>
<option value="2">Medium</option>
<option value="3">Large</option>
</select>
<?php
$a = $_POST['sizeoption'];
echo $a;
?>
</td>
</tr>
</table>