@phpMick You’ll need to load all the partials as Blade templates are generated server-side. You’ll then need to somehow “bind” a select option to something like a div tag, and when an option is selected show the corresponding div and hide the others.
Can be as simple as:
<select id="options">
<option value="">Choose:</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
<div class="option" id="option-1">
<p>Content for option #1</p>
</div>
<div class="option" id="option-2">
<p>Content for option #2</p>
</div>
<div class="option" id="option-3">
<p>Content for option #3</p>
</div>
$('#options').on('change', function (e) {
$('.option').hide();
$('#option-' + e.target.value).show();
});