Don't worry, I didn't notice you had linked Jquery. I've amended so this is my new code (Sorry for the dumps):
<script src="./?a=130737"></script>
<script src="./?a=130736"></script>
<div class=“error”>%form_errors%</div>
<div>
<fieldset>%form_contents%</fieldset>
</div>
<fieldset>
<select id=“options”>
<option value="">Choose Test</option>
<option value=“t1”>test1</option>
<option value=“t2”>test2</option>
</select>
<div id=“test1” style=“display: none;”>
<fieldset>
<h3>%section_title_134868%</h3>
%section_contents_134868%</fieldset>
</div>
<div id=“test2” style=“display: none;”>
<fieldset>
<h3>%section_title_134869%</h3>
%section_contents_134869%</fieldset>
</div>
</fieldset>
<script>
$(’#options’).change(function() {
var val = $(this).val();
if (val == 't1') {
$('#test1').show();
$('#test2').hide();
} else {
$('#test1').hide();
$('#test2').show();
}
});
</script>
The problem I have now, is that the titles show, but the section contents never shows. Sorry for all this :D Just really want to figure out how I can make this possible.