I have one field Style, in this field I have few options to select, but what I want is when the person doesn't select any style, in the field I want to display the text "N/A" How I can do that?
Now display nothing if i dont select the style

<dt> Style </dt>
<dd> <?php $styles=styles();
if(isset($styles[$user->style]))echo $styles[$user->style];
?> </dd>
