Utiliza wp_dropdown_categories , configura las opciones que quieras y listo.
Código PHP:
Ver original<?php wp_dropdown_categories('hierarchical=0&exclude=&depth=1&include=&show_option_none=Seleccione una categoria');?>
<script type="text/javascript"><!--
var dropdown = document.getElementById("cat");
function onCatChange() {
if ( dropdown.options[dropdown.selectedIndex].value > 0 ) {
location.href = "<?php echo get_option('home');
?>/?cat="+dropdown.options[dropdown.selectedIndex].value;
}
}
dropdown.onchange = onCatChange;
--></script>