I'm guessing by looking at your code that $articoli is coming from the dropdown box.
So when someone selects Notebook it should be requiring N.inc
If I am correct then the problem is in both sections, the HTML and PHP.
Set your form method like this:
<form action="prodotti.php" method="post">
<select name="articoli">
<option value="N">Notebook</option>
<option value="C">Cellulari</option>
<option value="D">Desktop</option>
</select>
Then you can grab the variable like this in your php code
$articoli = $_POST['articoli'];
require($articoli.".inc");
When making any type of form, you need to capture the variable using the $POST or $GET method, depending on the form method in your html
Let us know if this helps any.
Dave