just make sure the value in the options tags matches the value in the val method.
$("#mydropdownlist").val("thevalue");
If you have some onchange or any other functionalities with drop down you can use below code. It can trigger your onchange or some other functionalities.
$("#mydropdownlist").val("thevalue").change();