Hi nauna,
You can't have an ActionLink inside an option tag.
If you want to move to a link that is selected from a dropdown you need to use change event.
Use an attribute that has the address inside like
<option value="https://www.aspsnippets.com">
Then in change event use the value.
$('#DropDownList').on("change", function () {
var url = $(this).find('option:selected').val();
window.location.href = url;
});