$(document).ready(function(){
$("#lyjMenu").change(function(){
window.location.href = $(this).find("option:selected").attr("id") + '.html';
});
});
<select id="lyjMenu">
<option selected>Choose Demo</option>
<option id="backgrounds">Background images</option>
<option id="backgroundVideo">Background video</option>
</select>