Use wp_list_categories to list parent categories from actual term

this will work:

$terms = wp_get_object_terms( $post->ID, 'wpsc_product_category' );
foreach($terms as $term){
    if($term->parent != 0){
        // this category has a parent and its id is $term->parent
    }
}