Create Terms on taxonomy by text field

I think you need to set the hierarchy to false, like this:

register_taxonomy(  
    'internal_name',  
    'object_type',  
        array(  
            'hierarchical' => false
        )  
);