default selected dropdown
by lokointhehouse2
JavaScript
<script type="text/javascript">
$('select[name="topic1"]').find('option[value="#form.topic1#"]').attr("selected",true);
$('select[name="topic2"]').find('option[value="#form.topic2#"]').attr("selected",true);
$('select[name="topic3"]').find('option[value="#form.topic3#"]').attr("selected",true);
$('select[name="type"]').find('option[value="#form.type#"]').attr("selected",true);
$('select[name="type2"]').find('option[value="#form.type2#"]').attr("selected",true);
$('select[name="type3"]').find('option[value="#form.type3#"]').attr("selected",true);
$('select[name="gaspipeline"]').find('option[value="#form.gaspipeline#"]').attr("selected",true);
</script>