<!--
var action = { "job": { "A": "/search/job/it.html", "B": "/search/job/kanri.html", "C": "/search/job/eigyo.html", "D": "/search/job/other.html" } };

function go_list(value) {
    if (value.length == 1) {
        document.getElementById('span_form').innerHTML =
            '<form id="form_auto" method="post" action="' + action['job'][value] + '"></form>';
        document.getElementById('form_auto').submit();
    } else if (value.length == 2) {
        document.getElementById('span_form').innerHTML =
            '<form id="form_auto" method="post" action="' + action['job'][value.substr(0, 1)] + '">'
          + '<input type="hidden" name="mode" value="search">'
          + '<input type="hidden" name="job_large" value="' + value + '">';
          + '</form>';
        document.getElementById('form_auto').submit();
    }
}
//-->