Print all children of a menu item
function tmplt_childtree($mlid,$menu='main-menu') {
$tree = menu_tree_all_data($menu);
foreach($tree as $child){
if($child['link']['mlid'] == $mlid){
return drupal_render(menu_tree_output($child['below']));
}
}
}