function populateOpenID() {
    var textbox = document.getElementById('content-openid');
    var select = document.getElementById('stock-openid');
    
    textbox.value = select.options[select.selectedIndex].value;
    textbox.focus();
}
