diff --git a/htdocs/comm/multiprix.php b/htdocs/comm/multiprix.php
index 645bdc580b4c1b6d8bf4ac0744ed2d125ab5f2a3..fbaf00e53db91e05028aa2f7267a5b6c43f20606 100644
--- a/htdocs/comm/multiprix.php
+++ b/htdocs/comm/multiprix.php
@@ -105,7 +105,10 @@ if ($_socid > 0)
 		print '<option value="'.$i.'"' ;
 		if($i == $objsoc->price_level)
 		print 'selected';
-		print '>'.$i.'</option>';
+		print '>'.$i;
+		$keyforlabel='PRODUIT_MULTIPRICES_LABEL'.$i;
+		if (! empty($conf->global->$keyforlabel)) print ' - '.$langs->trans($conf->global->$keyforlabel);
+		print '</option>';
 	}
 	print '</select>';
 	print '</td></tr>';