/* Add custom div to checkout page */
// Hook in
add_filter( 'woocommerce_before_order_notes' , 'custom_override_checkout_fields' );
// Our hooked in function - $fields is passed via the filter!
function custom_override_checkout_fields( $fields ) {
echo '<div id="customdiv">';
echo '</div>';
return $fields;
}