Opsi yang dipilih nilai AOTU

$(document).ready(
    function(){
        var theValue = $('#myId').val();
        $('option[value=' + theValue + ']')
            .attr('selected',true);
    });
SAMER SAEID